home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo off
- rem (C) Copyright 1993, Ad Infinitum Programs, all rights reserved
- rem
- rem This batch file is called to check the contents of an archive. The
- rem current directory and all subdirectories can be checked for
- rem viruses etc. If no problems are found U$~CHK3 should be created.
- rem
-
- rem *** McAffee 100 or higher ***
-
- scan . /sub
-
- if errorlevel 1 goto end
-
-
- rem *** F-PROT ***
-
- f-prot .
-
- if errorlevel 1 goto end
-
-
- echo check > u$~chk3
- :end
-